Package pl. wendigo. chrome. api. input
Contains DevTools Protocol Input domain implementation accessible via InputDomain class.
Types
DispatchKeyEventRequest
Link copied to clipboard
data class DispatchKeyEventRequest(type: String, modifiers: Int?, timestamp: TimeSinceEpoch?, text: String?, unmodifiedText: String?, keyIdentifier: String?, code: String?, key: String?, windowsVirtualKeyCode: Int?, nativeVirtualKeyCode: Int?, autoRepeat: Boolean?, isKeypad: Boolean?, isSystemKey: Boolean?, location: Int?, commands: List<String>?)
Content copied to clipboard
Represents request frame that can be used with Input#dispatchKeyEvent operation call.
DispatchMouseEventRequest
Link copied to clipboard
data class DispatchMouseEventRequest(type: String, x: Double, y: Double, modifiers: Int?, timestamp: TimeSinceEpoch?, button: MouseButton?, buttons: Int?, clickCount: Int?, force: Double?, tangentialPressure: Double?, tiltX: Int?, tiltY: Int?, twist: Int?, deltaX: Double?, deltaY: Double?, pointerType: String?)
Content copied to clipboard
Represents request frame that can be used with Input#dispatchMouseEvent operation call.
DispatchTouchEventRequest
Link copied to clipboard
data class DispatchTouchEventRequest(type: String, touchPoints: List<TouchPoint>, modifiers: Int?, timestamp: TimeSinceEpoch?)
Content copied to clipboard
Represents request frame that can be used with Input#dispatchTouchEvent operation call.
EmulateTouchFromMouseEventRequest
Link copied to clipboard
data class EmulateTouchFromMouseEventRequest(type: String, x: Int, y: Int, button: MouseButton, timestamp: TimeSinceEpoch?, deltaX: Double?, deltaY: Double?, modifiers: Int?, clickCount: Int?)
Content copied to clipboard
Represents request frame that can be used with Input#emulateTouchFromMouseEvent operation call.
GestureSourceType
Link copied to clipboard
InputDomain
Link copied to clipboard
InsertTextRequest
Link copied to clipboard
MouseButton
Link copied to clipboard
SetIgnoreInputEventsRequest
Link copied to clipboard
SynthesizePinchGestureRequest
Link copied to clipboard
data class SynthesizePinchGestureRequest(x: Double, y: Double, scaleFactor: Double, relativeSpeed: Int?, gestureSourceType: GestureSourceType?)
Content copied to clipboard
Represents request frame that can be used with Input#synthesizePinchGesture operation call.
SynthesizeScrollGestureRequest
Link copied to clipboard
data class SynthesizeScrollGestureRequest(x: Double, y: Double, xDistance: Double?, yDistance: Double?, xOverscroll: Double?, yOverscroll: Double?, preventFling: Boolean?, speed: Int?, gestureSourceType: GestureSourceType?, repeatCount: Int?, repeatDelayMs: Int?, interactionMarkerName: String?)
Content copied to clipboard
Represents request frame that can be used with Input#synthesizeScrollGesture operation call.
SynthesizeTapGestureRequest
Link copied to clipboard
data class SynthesizeTapGestureRequest(x: Double, y: Double, duration: Int?, tapCount: Int?, gestureSourceType: GestureSourceType?)
Content copied to clipboard
Represents request frame that can be used with Input#synthesizeTapGesture operation call.
TimeSinceEpoch
Link copied to clipboard